In several programming languages, such as Perl, brace notation is a faster way to extract bytes from a string variable. ==In pseudocode== An example of brace notation using pseudocode which would extract the 82nd character from the string is: a_byte=a_string The equivalent of this using a hypothetical function 'MID' is: a_byte=MID(a_string,82,1)